home *** CD-ROM | disk | FTP | other *** search
Makefile | 1996-03-31 | 1.9 KB | 53 lines |
- ### Make file for f2c-stabs. I hope it works...
- ### Read comments and README file for installation notes, etc.
- ###
- ### Copyright (c) 1996 Harvey J. Stein <abel@netvision.net.il>, and
- ### eventually <hjstein@netvision.net.il>
- ### All Rights Reserved.
- ###
- ### This package is covered by the GNU GPL. You can freely use and
- ### distribute it as long as it stays under the GNU GPL, and as long as
- ### you distribute all the corresponding source code, and as long as this
- ### message and the above copyright notice remains.
-
-
- ### Change ELISPDIR to be the directory where to copy the .el
- ### files. This directory must be on your emacs load path.
- ELISPDIR = /usr/local/lib/emacs/site-lisp
-
- ### Change BINDIR to be the directory where you want to keep the
- ### scripts. For ease of use, it should be a directory on your PATH.
- BINDIR = /usr/local/bin
-
- ### Change STKDIR to be the directory where you want to keep the STk
- ### code. It needs to be a directory in which STk will search for
- ### code. /usr/local/lib/stk/VERSION_NUMBER is the standard location,
- ### so change the 3.0 below to the version number of the version of
- ### STk that you're using.
- STKDIR = /usr/local/lib/stk/3.0
-
- ### We hope that from here on, things will be OK...
- ELISP_FILES = f2c-stabs.el parcil.el
- BINS = \
- make-f2c-stabs fts-f-strip-cmts fts-f-unsplit \
- fts-f-split-decls fts-f2si.awk make-test-routines
-
- STK_FILES = \
- si-lib.stk si-fstabs-lib.stk formout.scm
-
- all : dot-elcs install
-
- dot-elcs : make-elcs.el $(ELISP_FILES)
- emacs -batch -q -l make-elcs.el
-
- make-elcs.el : $(ELISP_FILES)
- rm -f make-elcs.el
- echo ';;; Short emacs .el file for compiling code.' >make-elcs.el
- echo ';;; Automatically built by Make.' >>make-elcs.el
- for x in $(ELISP_FILES) ; do echo '(byte-compile-file "'$$x'")' >>make-elcs.el ; done
-
- install :
- cp -f f2c-stabs.el f2c-stabs.elc parcil.el parcil.elc $(ELISPDIR)
- cp -f $(BINS) $(BINDIR)
- cp -f $(STK_FILES) $(STKDIR)
-